home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_200
/
221_01
/
isspace.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1980-01-01
|
256 b
|
8 lines
#include stdio.h
/*
** check if space, new line or tab
** return 1 if true else 0
*/
isspace(c) char c; {
return((c==' ') || (c=='\t') || (c=='\n'));
}